home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / news / inn1.000 / inn1.4sec-linux-src.tar / inn / include / mydir.h < prev    next >
C/C++ Source or Header  |  1992-03-03  |  291b  |  15 lines

  1. /*  $Revision: 1.1 $
  2. **
  3. **  Encapsulate dirent/direct differences.
  4. */
  5.  
  6. #if    defined(DIR_DIRENT)
  7. #include <dirent.h>
  8. typedef struct dirent    DIRENTRY;
  9. #endif    /* defined(DIR_DIRENT) */
  10.  
  11. #if    defined(DIR_DIRECT)
  12. #include <sys/dir.h>
  13. typedef struct direct    DIRENTRY;
  14. #endif    /* defined(DIR_DIRECT) */
  15.